home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 547 b | 31 lines | [TEXT/CWIE] |
- // GadgetsDoc.h -- document-level functions
-
- #pragma once
-
- #include "AMDoc.h"
-
- class GadgetsEngine;
-
- //----------
- class GadgetsDoc : public AMDoc {
- public:
- GadgetsDoc ();
- virtual ~GadgetsDoc ();
-
- public:
- virtual Boolean DoCommand (long inCommand);
-
- protected:
- virtual void OpenWindows ();
- virtual Boolean WouldCloseDoc (WindowPtr windPtr);
-
- virtual GadgetsEngine* GetEngine ();
-
- virtual void DoInvokeAbout ();
-
- public: // later - will be protected:
- WindowPtr mButtonsPtr;
- WindowPtr mTabbedPanelPtr;
- WindowPtr mEditTextPtr;
- };
-